From 2177cc9821c820476ed57e37cdd0a37fd11afae0 Mon Sep 17 00:00:00 2001 From: parkrrrr Date: Mon, 17 Jul 2006 18:37:19 +0000 Subject: [PATCH] handle type 3 record like type 2 record until we figure out what those other two bytes/strings/whatevers are git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@2238 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/tomtom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/tomtom.c b/gpsbabel/tomtom.c index 97dcb81f0..4a89d4133 100644 --- a/gpsbabel/tomtom.c +++ b/gpsbabel/tomtom.c @@ -104,7 +104,7 @@ data_read(void) read_long( file_in ); read_long( file_in ); } - else if ( rectype == 2 ) { + else if ( rectype == 2 || rectype == 3 ) { recsize = read_long( file_in ); x = read_long( file_in ); y = read_long( file_in ); -- 2.30.2